HTMLify
index.html
Views: 473 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Transpose-Matrix Calculator</title> <link rel="stylesheet" href="style.css"> </head> <body id="body"> <div class="container"> <h1>Transpose-Matrix Calculator</h1> <div id="matrix" class="matrixClass"> <table> <thead> <tr> <th>A1</th> <th>A2</th> <th>A3</th> </tr> </thead> <tbody> <tr> <td> <input type="text" name="array[]" value="" title="[1,1]"> </td> <td> <input type="text" name="array[]" value="" title="[1,2]"> </td> <td> <input type="text" name="array[]" value="" title="[1,3]"> </td> </tr> <tr> <td> <input type="text" name="array[]" value="" title="[2,1]"> </td> <td> <input type="text" name="array[]" value="" title="[2,2]"> </td> <td> <input type="text" name="array[]" value="" title="[2,3]"> </td> </tr> <tr> <td> <input type="text" name="array[]" value="" title="[3,1]"> </td> <td> <input type="text" name="array[]" value="" title="[3,2]"> </td> <td> <input type="text" name="array[]" value="" title="[3,3]"> </td> </tr> </tbody> </table> </div> <button id="button">Get</button> </div> </body> <script src="script.js"></script> </html> |